home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1998 November: Tool Chest
/
Dev.CD Nov 98 TC.toast
/
Tool Chest
/
Development Kits
/
C++ Related
/
C++ Source Code Formatter
/
Tests
/
Example.cp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-01-10
|
271 b
|
17 lines
|
[
TEXT/MPS
]
void foo(int x,
int y)
{
if (x > y)
return true;
else
// Here comes the problem, it doesn't matter what kind of compound statement
// I put here, as long as it has curly braces. This comment has not affect.
for (i = 0; i < x; i++)
{
printf(i);
}
}